Add a datetime-default-now helper function - #3159
Merged
Merged
Conversation
I found I was writing this a lot in my migrations. So why not just put it in the library?
Huliiiiii
reviewed
Aug 6, 2026
| } | ||
|
|
||
| /// A date time column with a server-side default of 'now'. | ||
| pub fn date_time_default_now<T: IntoIden>(col: T) -> ColumnDef { |
Member
There was a problem hiding this comment.
now() != CURRENT_TIMESTAMP
Furthermore, CURRENT_TIMESTAMP has different semantics in different databases.
tyt2y3
added a commit
that referenced
this pull request
Aug 8, 2026
Mirror the date_time_default_now helper (#3159) for the timestamp family: timestamp_default_now and timestamp_with_time_zone_default_now, both defaulting to Expr::current_timestamp().
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
I found I was writing this a lot in my migrations. So why not just put it in the library?
New Features
date_time_default_nowhelper function for migrations.